home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The SelectWare System Volume 5 #4
/
The SelectWare System Volume 5 #4.iso
/
ado10004
/
swtdemo.bat
< prev
next >
Wrap
DOS Batch File
|
1993-12-09
|
753b
|
36 lines
@echo off
:start
cls
echo.
echo Welcome to Adobe Systems Inc.
echo Photoshop for Windows.
echo.
echo Photoshop will install to the location specified and create a group
echo icon in windows that will not be removed by the demonstration system.
echo.
echo Please choose one of the selections below:
echo.
echo 1. Run Photoshop for Windows, Tryout Version 2.5.1.
echo Note: May change current Adobe Photoshop windows settings.
echo 2. Quit
echo.
echo Please enter the number for your choice;
query
if errorlevel = 2 goto end
if errorlevel = 1 goto run
echo Unavailable choice.
pause
goto start
goto end
:run
cls
echo Loading Windows Alt-F4 to Exit Windows
pause
WIN SETUP.EXE
goto end
:end